php forum
php mysql forum
php mysql smarty
 
Page 1 of 4 1 2 3 4 >
Topic Options
#202188 - 02/06/04 03:09 PM [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
Modification Name: Category Minimizing

Author(s): Ian Spence, LK

Description: Allows the user to hide and show categories at will, and saves their choices in a cookie

Demo: http://www.alforadmin.com/forums

Requirements: UBB.classic 6.7

Download Link: http://www.ubbdev.com/ubb/upload/00020028/CategoryMinimizing67.zip

Top
#202189 - 02/06/04 03:24 PM Re: [6.7] [beta] Category Minimizing
AllenAyres Offline

I type Like navaho

Registered: 03/10/00
Posts: 25580
Loc: Texas
Excellent! laugh

Easily one of the best new mods, thanks Ian thumbsup
_________________________
- Allen wavey
- What Drives You?

Top
#202190 - 02/06/04 03:38 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
Don't forget to thank LK. I did the html, hiding part. He did the perl/colors for new posts/the one thing I can describe but most wouldn't understand it thing

Top
#202191 - 02/07/04 05:14 AM Re: [6.7] [beta] Category Minimizing
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
Good job! (Al did really most of the job)
_________________________

My Hacks Page (will be back with UBB 7!)
UBBDev - We put the class into UBB.classic!

Top
#202192 - 02/08/04 11:08 AM Re: [6.7] [beta] Category Minimizing
d-talk Offline
Code Monkey

Registered: 05/01/01
Posts: 686
Sorry, it's me again!

I can not find the following code at public_forum_summary.pl (file from 6.7 final)

# FIND: #
###########

my $modby = qq~
$vars_wordlets{moderated_by} $Moderator~;
if((($Moderator eq $vars_wordlets{"no_mods"}) && ($vars_display{DisplayModBy} eq "nomods"))
|| ($vars_display{DisplayModBy} eq "no")) {
$modby = "";
} # end if

###############
# ADD AFTER: #
###############

if($ThisHTML =~ m/^.+bulbcolor("(d{7}.d{4})","(d+)");/isg) {
my $whatever = $1;
if ($LastPostJulian > $whatever) {
$ThisHTML =~ s/^(.+)bulbcolor("(d{7}.d{4})","(d+)");/$1 bulbcolor("$LastPostJulian","$3");/isg;
}
}
_________________________
Webmaster of d-talk & Kabel-Forum.com

Top
#202193 - 02/08/04 11:23 AM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
updated

Top
#202194 - 02/26/04 07:01 AM Re: [6.7] [beta] Category Minimizing
Eric Flyxe Offline
Member

Registered: 05/03/01
Posts: 57
Hi there. Must be stupid, but I only get + and no - , no matter if the category is minimized or not.

Top
#202195 - 02/26/04 07:26 AM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
can I have a link to your forum, and a login/password if it only allows registered users in?

Top
#202196 - 02/26/04 08:50 AM Re: [6.7] [beta] Category Minimizing
Eric Flyxe Offline
Member

Registered: 05/03/01
Posts: 57
Sure!

It´s in Swedish... smile

Coming by PM right away!

Top
#202197 - 02/26/04 09:17 AM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
I found the problem, however there seems to be an issue with flareupload right now, so here is the fix itself.

In public_forum_summary.pl, change

Code:
<a href="javascript:void(0);" onclick="hideit('$cat_number' , 'visible');"><span id="shown-$cat_number">
<img src="$vars_config{NonCGIURL}/catexpand.gif" alt="[-]" id="imgshown-$cat_number"  border="0"/></span></a>
to

Code:
<a href="javascript:void(0);" onclick="hideit('$cat_number' , 'visible');"><span id="shown-$cat_number">
<img src="$vars_config{NonCGIURL}/catminimize.gif" alt="[-]" id="imgshown-$cat_number"  border="0"/></span></a>

Top
#202198 - 02/26/04 10:04 AM Re: [6.7] [beta] Category Minimizing
Eric Flyxe Offline
Member

Registered: 05/03/01
Posts: 57
Thanks, it worked!

Top
#202199 - 03/02/04 07:03 PM Re: [6.7] [beta] Category Minimizing
Poopy Pants Offline
Member

Registered: 08/22/01
Posts: 100
Am I missing something? I followed the replace, add after instructions but looks like some of the code I am supposed to search for in the original .pl file is different from the instructions.

I have the latest 6.7.

Top
#202200 - 03/02/04 07:19 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
please give me examples of what you're having trouble with. All of that code should be in the corresponding files

Top
#202201 - 03/02/04 07:52 PM Re: [6.7] [beta] Category Minimizing
Poopy Pants Offline
Member

Registered: 08/22/01
Posts: 100
sub Normal_Table_Row {
use vars qw($ThisHTML);
# Caution: Relies on lots of local()s

is what you are asking to find.

this is what i actually have.

sub Normal_Table_Row {
# Caution: Relies on lots of local()s
my $Row = qq~

Top
#202202 - 03/09/04 06:38 AM Re: [6.7] [beta] Category Minimizing
Poopy Pants Offline
Member

Registered: 08/22/01
Posts: 100
any update on this?

Top
#202203 - 03/09/04 06:40 AM Re: [6.7] [beta] Category Minimizing
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
Young, search for:

Quote:
quote:
# Caution: Relies on lots of local()s
And post the lines above it, it should be below:

Code:
sub Normal_Table_Row {
Give the 5 lines above and below it.
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#202204 - 03/10/04 05:17 PM Re: [6.7] [beta] Category Minimizing
bryan868 Offline
Member

Registered: 09/18/00
Posts: 273
Wow, this is just a fantastic mod. It should be implemented into the next UBB version.
_________________________
This is the designed behavior.

Top
#202205 - 03/12/04 01:07 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
Updated with fix for the guy who doesn't have a single normal letter in his name

Top
#202206 - 03/14/04 01:41 AM Re: [6.7] [beta] Category Minimizing
Poopy Pants Offline
Member

Registered: 08/22/01
Posts: 100
this bites laugh for some reason I am getting both the - and + gif with one on top of each other and not clickable.

did the mod three times double checking each line for mistakes.

Top
#202207 - 03/14/04 06:32 AM Re: [6.7] [beta] Category Minimizing
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
Actually I believe his "g" and "T" are regular tipsy
_________________________

My Hacks Page (will be back with UBB 7!)
UBBDev - We put the class into UBB.classic!

Top
#202208 - 03/14/04 09:08 AM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
^$#^%#$^%#

Do me a favor. Go into your CP, go to "General" under "Display Options". Once on that page, just click submit. While you do that, I'll update the zip

Top
#202209 - 03/14/04 09:16 AM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
Updated.


And LK, those are the rare South African Jungle "g"s and "T"s. wink

Top
#202210 - 03/14/04 09:53 AM Re: [6.7] [beta] Category Minimizing
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
Yeh, watch out of a headhunter will steal your i, n, and e's.. Then you'll be A Spc smirk...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#202211 - 04/08/04 04:06 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
updated with a fix that the + and - would show an incorrect color if the posts in the category were made at special times

Top
#202212 - 04/08/04 04:26 PM Re: [6.7] [beta] Category Minimizing
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
which portions need updated?
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#202213 - 04/08/04 04:34 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
Code:
###########
#  FIND:  #
###########

sub Normal_Table_Row {
	# Caution: Relies on lots of local()s

###############
#  ADD AFTER: #
###############
	use vars qw($ThisHTML);
	if($ThisHTML =~ m/^.+bulbcolor("(.+?)","(d+)");/isg) {
		my $whatever = $1;
		if ($LastPostJulian > $whatever) {
			$ThisHTML =~ s/^(.+)bulbcolor("(.+?)","(d+)");/$1 bulbcolor("$LastPostJulian","$3");/isg;
		}
	}
that step

Top
#202214 - 04/18/04 12:33 AM Re: [6.7] [beta] Category Minimizing
mmg Offline
Junior Member

Registered: 07/17/03
Posts: 6
I'm running into a slight problem with this mod. It works perfectly as long as all of my categories are maximized by default, but when I set a category to be shown as collapsed by default it won't open. Does this occur for anyone else, or did I do something wrong while installing it?

Top
#202215 - 04/18/04 07:56 AM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
When you minimize a category via the code built into UBB, it doesn't minimize it as much as not print any of it's forums.

Top
#202216 - 04/19/04 11:53 PM Re: [6.7] [beta] Category Minimizing
Clay Autery Offline
Junior Member

Registered: 11/15/03
Posts: 11
Ian,

Man, I wanted this one to work right... it flat "broke" my public-forum_summary.pl file... I'm sure it was simply something I did wrong; I probably interpreted the Find/Add After et al. instructions wrong in some place.

I got a "missing closing curly brace or square bracket missing at line 667 " and a failure to compile error.

I will start again from a "known-good" place later and document step by step what I do until (if) it breaks.
_________________________
Clay Autery
"More, Better, Faster..."

Top
#202217 - 05/17/04 12:09 AM Re: [6.7] [beta] Category Minimizing
havoq Offline
Member

Registered: 09/11/01
Posts: 667
Loc: MI
Ian: If I took out this line of code, it shouldn't matter, correct?

Code:
document.write('<style type="text/css">body { visibility:hidden;}</style>');
_________________________
-Jon
I have a measly [img]http://www.ubbdev.com/ud/?u=chugger93&s=1[/img] points, it's weak, I know wink
Where I continue to hack, even though it's a state of mind

Top
#202218 - 05/17/04 07:43 AM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
it'll still work, just the page will load weird

Top
#202219 - 05/17/04 09:32 AM Re: [6.7] [beta] Category Minimizing
havoq Offline
Member

Registered: 09/11/01
Posts: 667
Loc: MI
hehehe actually it loads fine now that I found and deleted that sniplet of code.

It was causing my forum summary to load with a ALL WHITE page first (very quickly, not tooo noticeable) and then the forum summary

now theres no white page that loads. Good deal wink
_________________________
-Jon
I have a measly [img]http://www.ubbdev.com/ud/?u=chugger93&s=1[/img] points, it's weak, I know wink
Where I continue to hack, even though it's a state of mind

Top
#202220 - 05/17/04 10:07 AM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
Quote:
Originally posted by havoq:

hehehe actually it loads fine now that I found and deleted that sniplet of code.

It was causing my forum summary to load with a ALL WHITE page first (very quickly, not tooo noticeable) and then the forum summary

now theres no white page that loads. Good deal wink



That was more of a design feature LK and I decided on. People with slow connections will have all the categories shown until the entire page loads, then they'll minimize, hence "weird page loading"

Top
#202221 - 05/18/04 12:57 PM Re: [6.7] [beta] Category Minimizing
Painfool Offline
Member

Registered: 08/14/00
Posts: 182
Brings up an interesting question. Is it possible to create a version that utilizes Infopops version (not actually drawing the minimized forums) with this hack (indicating posts within the control panel minimized category & +/- to open close).

That possible ?

Top
#202222 - 05/18/04 02:52 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
I'm sorry, but I don't understand what you mean.

You want to have the + and - in the CP to minimize categories, instead of the checkboxes?

Top
#202223 - 05/19/04 12:31 PM Re: [6.7] [beta] Category Minimizing
Chí Phčo Offline
Junior Member

Registered: 01/31/04
Posts: 15
Thank you Ian and LK

It works properly on UBB 6.6 (^_^)
_________________________
Chí Phčo

http://phamtrungdung.biz/cgi-bin/ultimatebb.cgi <---My UBB demo board

Top
#202224 - 06/17/04 03:18 PM Re: [6.7] [beta] Category Minimizing
DocDoom Offline
Member

Registered: 09/09/01
Posts: 64
two questions (sorry for all the questions today)

1) is there a way with this mod to make the board default with certain categories minimized?

2) this is probably a dumb question, how do you change the color of those gif files? I'm looking for blue for new messages and dark grey for old (something that more closely matches my custom message lights below)



ps - great mod!
_________________________
my board :^)

Top
#202225 - 06/17/04 03:56 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
to edit the colors, you should edit this step,

Code:
<style type="text/css">
.newbulb { background-color : #FFA800; border: 1px solid #FFA800; }
.oldbulb { background-color : #6A89B1; border: 1px solid #6A89B1; }
</style>
change the hexcodes to work with your colorscheme

as for question 1, it's not available yet, possibly in the next version

Top
#202226 - 06/17/04 04:13 PM Re: [6.7] [beta] Category Minimizing
DocDoom Offline
Member

Registered: 09/09/01
Posts: 64
thanks!
_________________________
my board :^)

Top
#202227 - 02/19/05 08:40 AM Re: [6.7] [beta] Category Minimizing
Neptin Offline
Member

Registered: 07/08/00
Posts: 48
Loc: Atlanta
I tried to install this and I got a white page that didn't go away. Any ideas?
_________________________
Dustin 'Neptin' Shelby
http://www.buffybb.net

Top
#202228 - 02/19/05 12:06 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
view the source code... is there any? if the page is there, make sure the onload for the body is present

Top
#202229 - 04/11/05 07:24 PM Re: [6.7] [beta] Category Minimizing
Tiger66 Offline
Member

Registered: 03/31/04
Posts: 58
Loc: Israel
About this step,

find:
<img src="$vars_config{NonCGIURL}/$vars_style{forum_summ_on}" border="0" alt="$vars_wordlets{forum_summ_legend_new}" />


In the file public_forum_summary.pl, I don't have it, the closest thing is:

<img src="$vars_config{NonCGIURL}/$vars_style{forum_summ_on}" border="0" alt="$vars_wordlets_img{alt_bulb_on}" />

Is it the same and should I do this step as usual?

On ubb 6.7.1 btw

Top
#202230 - 04/11/05 07:35 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
that's odd, but the step doesn't even matter, it only places the icon at the bottom to tell people what it means. but yes, those should be interchangeable

Top
#202231 - 04/12/05 09:00 PM Re: [6.7] [beta] Category Minimizing
Tiger66 Offline
Member

Registered: 03/31/04
Posts: 58
Loc: Israel
For some reason the rooms tables doesn't load, I mean nothing below the recent visitors table, above there everything is as usual, already tried to re hack 3 times, any help on this please?

Top
#202232 - 04/12/05 10:41 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
could we have a link to where you are trying this?

Top
#202233 - 04/13/05 07:15 PM Re: [6.7] [beta] Category Minimizing
Tiger66 Offline
Member

Registered: 03/31/04
Posts: 58
Loc: Israel
Sorry I'm afraid I can't give the link it's a private board, will a screen cap of the page help?

Top
#202234 - 04/13/05 07:32 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
no, I can picture it

make sure that there are no open tags within the code you modified

ie, <tr<td>

notice how the <tr> is still open

Top
#202235 - 04/13/05 08:47 PM Re: [6.7] [beta] Category Minimizing
Tiger66 Offline
Member

Registered: 03/31/04
Posts: 58
Loc: Israel
Ok I'll search, tnx

I do have split categoreis/posts, could it be related to that?

Top
#202236 - 04/13/05 09:03 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
ugh, that's quite possible, and could be why you couldn't find the image code earlier

Top
#202237 - 11/03/05 04:08 AM Re: [6.7] [beta] Category Minimizing
AshtarRose Offline
Journeyman

Registered: 09/22/05
Posts: 137
Loc: Columbus, OH
I am getting this, but there isn't any fields showing up to put anything into.



!! Could not find var def for vars_display :: CategoriesMini
_________________________
http://www.riddledindarkness.com * Yeah I need the Crazy Mods.

Top
#202238 - 11/03/05 05:22 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
redo the steps in cp2_vars.cgi

Top
#202239 - 11/07/05 06:47 PM Re: [6.7] [beta] Category Minimizing
AshtarRose Offline
Journeyman

Registered: 09/22/05
Posts: 137
Loc: Columbus, OH
I did all that and it worked but now I have another question. Is there an option to click collapse in the category details in the CP so the category would show as collapsed by default? I tried the "collapsed" option with my Moonlight Adult forum and it doesn't open when you click on the + ...

http://hogwartsbynight.com/cgi-bin/cubb/ultimatebb.cgi
_________________________
http://www.riddledindarkness.com * Yeah I need the Crazy Mods.

Top
#202240 - 11/07/05 10:17 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
not at this time

Top
#202241 - 11/20/05 02:34 AM Re: [6.7] [beta] Category Minimizing
AshtarRose Offline
Journeyman

Registered: 09/22/05
Posts: 137
Loc: Columbus, OH
ugh.. its not saving my cache preferences anymore, any advive? I reset my browser and the forum cache, nothing is sticking..
_________________________
http://www.riddledindarkness.com * Yeah I need the Crazy Mods.

Top
#202242 - 11/21/05 02:13 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
What do you mean? Are the cache settings in the control panel not sticking, or are you saying that your showing and hiding category preferences aren't being saved (ie, you hide everything, but next time you return, it's showing everything )

If the latter, try clearing your cookies

Top
#202243 - 11/22/05 12:54 AM Re: [6.7] [beta] Category Minimizing
AshtarRose Offline
Journeyman

Registered: 09/22/05
Posts: 137
Loc: Columbus, OH
I did, I cleaned out and reset my entire browser, its getting a bit frustrating smile bah
_________________________
http://www.riddledindarkness.com * Yeah I need the Crazy Mods.

Top
#202244 - 11/22/05 03:00 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
odd, I just went to your site and it's working for me. go to http://hogwartsbynight.com/cgi-bin/cubb/ultimatebb.cgi?ubb=clearcookies one more time, then try. Also post if your getting any javascript errors when visiting the site

Top
#202245 - 11/25/05 08:42 PM Re: [6.7] [beta] Category Minimizing
AshtarRose Offline
Journeyman

Registered: 09/22/05
Posts: 137
Loc: Columbus, OH
nope and nope, neither worked and I never get an error
_________________________
http://www.riddledindarkness.com * Yeah I need the Crazy Mods.

Top
#202246 - 12/09/05 06:37 PM Re: [6.7] [beta] Category Minimizing
elzool Offline
Junior Member

Registered: 12/09/05
Posts: 8
I just installed this... I don't have any changes to my forum except for the addition of the graphics at the bottom.

Shouldn't something else have happened?

Did I miss something obvious?

-elz

Top
#202247 - 12/09/05 08:53 PM Re: [6.7] [beta] Category Minimizing
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
All I can really say without seeing the forums is that make sure you did all of the steps for public_forum_summary.pl correctly

Top
#202248 - 12/12/05 11:43 AM Re: [6.7] [beta] Category Minimizing
elzool Offline
Junior Member

Registered: 12/09/05
Posts: 8
lol
don't mind me

I really shouldn't try and work on things that require detailed work when I have taken cold medication

This am, everything is fine.
Sorry for the bother.

oh yeah, the reason it wasn't working?

I didn't upload the files

frown

Top
#202249 - 12/12/05 12:03 PM Re: [6.7] [beta] Category Minimizing
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
You are my new bestest friend... :hands over Jesters Cap:
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#202250 - 12/12/05 02:12 PM Re: [6.7] [beta] Category Minimizing
elzool Offline
Junior Member

Registered: 12/09/05
Posts: 8
wow!

only three posts here and I have a new bestest friend.

:wears cap with pride:

Top
Page 1 of 4 1 2 3 4 >



Moderator:  Charles, Gizmo 
Latest Posts
[7.2.1] - Naked shoutbox
by bellaonline
05/05/12 05:00 PM
[7.x] Stop Forum Spam Integration v0.4
by bellaonline
05/05/12 03:53 PM
Shout Box

(Views)Popular Topics
Known public proxy servers 1689885
Integrated Index Page (IIP) 5.3.1 555705
Finished-[6.5.2] Games Arcade Deluxe v1.9 501236
Integrated Index Page (IIP) 5.1.1 415112
TLD Bv2.1 Released - Threads Links Directory 396822
[6.0x] Who's Online 4.0.0 [Finished] 389412
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 330423
Q & A 298663
Slash UBB 266936
[6.3.x] [beta] Hit Hack 2.0 227970
Forum Stats
13621 Members
59 Forums
37191 Topics
295716 Posts

Max Online: 686 @ 06/28/07 07:04 AM

 

 

 
fusionbb message board php hacks